home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / xshogi11.lha / xshogi-1.1 / Imakefile < prev    next >
Makefile  |  1993-04-05  |  580b  |  29 lines

  1. #
  2. # Imakefile -- to generate a Makefile for xshogi, use:
  3. #   /usr/local/X11/mit/config/imake \
  4. #       -I/usr/local/X11/mit/config \
  5. #       -DTOPDIR=/usr/local/X11/mit
  6. #
  7.  
  8.    SYS_LIBRARIES = -lm
  9.  LOCAL_LIBRARIES = XawClientLibs
  10.          DEPLIBS = XawClientDepLibs
  11.          DEFINES = -DHAS_GETTIMEOFDAY
  12. #    CDEBUGFLAGS = -g
  13. #             CC = /contrib/system/bin/gcc -Wall
  14.  
  15. # For HP-UX, per R. K. Lloyd:
  16. #    CDEBUGFLAGS = +O3 +Obb1000
  17.  
  18. SRCS = parser.c xshogi.c
  19. OBJS = parser.o xshogi.o
  20.  
  21. AllTarget(xshogi)
  22.  
  23. depend:: parser.c
  24.  
  25. clean::
  26.     $(RM) parser.c
  27.  
  28. ComplexProgramTarget(xshogi)
  29.